home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 626-637 / disk_635 / ldp / docs / hitachi.doc next >
Text File  |  1992-05-06  |  2KB  |  45 lines

  1. ** Hitachi 9500 and 9550 players. This version UNTESTED! I couldn't find   **
  2. ** anyone willing to test it!                                              **
  3. ** Communication protocol:                                                 **
  4. ** Computer activates RTS (pin 4) on rs-232 port, (amiga 7-line handshake) **
  5. ** then sends "remote" command (68H) to switch player from local to remote **
  6. ** mode. Then send "play" command (25H) and expect back "job end" (A5H).   **
  7. ** The player may take up to 15 seconds to spin up! Commands that are sent **
  8. ** may return either a "job end" code which is the original command + 80H, **
  9. ** or echo back the original command (like status ). The Hitachi players   **
  10. ** don't support STATUS messages to find out if it is READY for a command. **
  11. ** ASCII digits used for frame search numbers, etc. BUT, frame numbers are **
  12. ** returned as two byte binary, high byte first, then low byte. Usual baud **
  13. ** rate is 9600.                                                           **
  14.  
  15. COMMANDS       CHAR     HEX    DECIMAL  JOB-END(hex)    COMMENT
  16. ----------------------------------------------------------------------------
  17. play-fwd        %       25      37      A5              Play forward
  18. play-rev        B       42      66      C2              Play reverse
  19. pause           *       2A      42      AA
  20. slow-fwd        #       23      35      A3              Slow forward
  21. slow-rev        (       28      40      A8              Slow reverse
  22. still-fwd       $       24      36      A4              Still forward
  23. still-rev       )       29      41      A9              Still reverse
  24. fast-fwd        !       21      33      A1              Fast forward
  25. fast-rev        &       26      38      A6              Fast reverse
  26. scan-fwd        "       22      34      A2              Scan forward
  27. scan-rev        '       27      39      A7              Scan reverse
  28. search          +       2B      43      B0
  29. enter           A       41      65      41 (echo back)  Terminate groups of cmds
  30. P. frame        k       6B      107     6B (echo back)  Get current frame #
  31. reject          /       2F      47      AF              Park disc
  32. (and a few others......)
  33.  
  34. SERIAL PORT CONNECTION:
  35.  computer   player
  36.  --------   ------
  37.   TxD 2      2 command
  38.   RxD 3      3 data
  39.   RTS 4      4 host ready
  40.   CTS 5      5 player ready
  41.   GND 7      7 GND
  42. -----------------------------
  43.  
  44.  
  45.